home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / libs / unixlib.lha / unix / src / time.c < prev    next >
C/C++ Source or Header  |  1995-09-05  |  214b  |  15 lines

  1. #include "amiga.h"
  2. #include "timeconvert.h"
  3.  
  4. time_t time(time_t * clock)
  5. {
  6.     struct timeval now;
  7.  
  8.     if (_gettime(&now) < 0)
  9.     return -1;
  10.     if (clock)
  11.     *clock = now.tv_secs;
  12.  
  13.     return (time_t) now.tv_secs;
  14. }
  15.